home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 February: Tool Chest / Apple Developer CD Series Tool Chest February 1996 (Apple Computer)(1996).iso / Tool Chest / Text / WASTE / WASTE 1.2a2 / LongCoords.h next >
Encoding:
C/C++ Source or Header  |  1995-10-12  |  412 b   |  32 lines  |  [TEXT/CWIE]

  1. /*
  2.  *    LongCoords.h
  3.  *
  4.  *    C/C++ interface to the WASTE text engine:
  5.  *    Long Coordinates
  6.  *
  7.  *    version 1.0
  8.  *
  9.  *    Copyright (c) 1993-1994 Marco Piovanelli
  10.  *    All Rights Reserved
  11.  * 
  12.  */
  13.  
  14. #ifndef __LONGCOORDINATES__ 
  15. #ifndef _LongCoords_
  16. #define _LongCoords_
  17.  
  18. typedef struct LongPt {
  19.     long v;
  20.     long h;
  21. } LongPt;
  22.  
  23. typedef struct LongRect {
  24.     long top;
  25.     long left;
  26.     long bottom;
  27.     long right;
  28. } LongRect;
  29.  
  30. #endif
  31. #endif
  32.